5
|
How do I put a picture on the control's background
public void init()
{
;
super();
exscrollbar1.Picture(exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exscrollbar1.VisiblePart(640/*exBackgroundPart*/,false);
exscrollbar1.BackColor(0x80000004);
}
|
4
|
How can I change the size of control's font
public void init()
{
;
super();
exscrollbar1.Font().Size(12);
exscrollbar1.ForeColor(WinApi::RGB2int(255,0,0));
exscrollbar1.Caption(256/*exThumbPart*/,"<img>0</img>thumb");
}
|
3
|
How do I change the control's font
public void init()
{
;
super();
exscrollbar1.Font().Name("Tahoma");
exscrollbar1.ForeColor(WinApi::RGB2int(255,0,0));
exscrollbar1.Caption(256/*exThumbPart*/,"<img>0</img>thumb");
}
|
2
|
How can I change the control's foreground color
public void init()
{
;
super();
exscrollbar1.ForeColor(WinApi::RGB2int(255,0,0));
exscrollbar1.Caption(256/*exThumbPart*/,"<img>0</img>thumb");
}
|
1
|
How can I change the control's background color
public void init()
{
;
super();
exscrollbar1.BackColor(WinApi::RGB2int(0,255,0));
exscrollbar1.VisiblePart(640/*exBackgroundPart*/,false);
}
|